home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / NEW_TECH / GREPS.ZIP / GETOPT.C < prev    next >
C/C++ Source or Header  |  1993-09-17  |  19KB  |  679 lines

  1. /* Getopt for GNU.
  2.    NOTE: getopt is now part of the C library, so if you don't know what
  3.    "Keep this file name-space clean" means, talk to roland@gnu.ai.mit.edu
  4.    before changing it!
  5.  
  6.    Copyright (C) 1987, 88, 89, 90, 91, 1992 Free Software Foundation, Inc.
  7.  
  8.    This program is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 2, or (at your option)
  11.    any later version.
  12.  
  13.    This program is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with this program; if not, write to the Free Software
  20.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. /* AIX requires this to be the first thing in the file. */
  23. #ifdef __GNUC__
  24. #define alloca __builtin_alloca
  25. #else /* not __GNUC__ */
  26. #if defined(sparc) && !defined(USG) && !defined(SVR4) && !defined(__svr4__)
  27. #include <alloca.h>
  28. #else
  29. #ifdef _AIX
  30.  #pragma alloca
  31. #else
  32. char *alloca ();
  33. #endif
  34. #endif /* sparc */
  35. #endif /* not __GNUC__ */
  36.  
  37. #ifdef    LIBC
  38. /* For when compiled as part of the GNU C library.  */
  39. #include <ansidecl.h>
  40. #endif
  41.  
  42. #include <stdio.h>
  43.  
  44. /* This needs to come after some library #include
  45.    to get __GNU_LIBRARY__ defined.  */
  46. #ifdef    __GNU_LIBRARY__
  47. #undef    alloca
  48. #include <stdlib.h>
  49. #include <string.h>
  50. #else    /* Not GNU C library.  */
  51. #define    __alloca    alloca
  52. #endif    /* GNU C library.  */
  53.  
  54.  
  55. #ifndef __STDC__
  56. #define const
  57. #endif
  58.  
  59. /* If GETOPT_COMPAT is defined, `+' as well as `--' can introduce a
  60.    long-named option.  Because this is not POSIX.2 compliant, it is
  61.    being phased out. */
  62. #define GETOPT_COMPAT
  63.  
  64. /* This version of `getopt' appears to the caller like standard Unix `getopt'
  65.    but it behaves differently for the user, since it allows the user
  66.    to intersperse the options with the other arguments.
  67.  
  68.    As `getopt' works, it permutes the elements of ARGV so that,
  69.    when it is done, all the options precede everything else.  Thus
  70.    all application programs are extended to handle flexible argument order.
  71.  
  72.    Setting the environment variable POSIXLY_CORRECT disables permutation.
  73.    Then the behavior is completely standard.
  74.  
  75.    GNU application programs can use a third alternative mode in which
  76.    they can distinguish the relative order of options and other arguments.  */
  77.  
  78. #include "getopt.h"
  79.  
  80. /* For communication from `getopt' to the caller.
  81.    When `getopt' finds an option that takes an argument,
  82.    the argument value is returned here.
  83.    Also, when `ordering' is RETURN_IN_ORDER,
  84.    each non-option ARGV-element is returned here.  */
  85.  
  86. char *optarg = 0;
  87.  
  88. /* Index in ARGV of the next element to be scanned.
  89.    This is used for communication to and from the caller
  90.    and for communication between successive calls to `getopt'.
  91.  
  92.    On entry to `getopt', zero means this is the first call; initialize.
  93.  
  94.    When `getopt' returns EOF, this is the index of the first of the
  95.    non-option elements that the caller should itself scan.
  96.  
  97.    Otherwise, `optind' communicates from one call to the next
  98.    how much of ARGV has been scanned so far.  */
  99.  
  100. int optind = 0;
  101.  
  102. /* The next char to be scanned in the option-element
  103.    in which the last option character we returned was found.
  104.    This allows us to pick up the scan where we left off.
  105.  
  106.    If this is zero, or a null string, it means resume the scan
  107.    by advancing to the next ARGV-element.  */
  108.  
  109. static char *nextchar;
  110.  
  111. /* Callers store zero here to inhibit the error message
  112.    for unrecognized options.  */
  113.  
  114. int opterr = 1;
  115.  
  116. /* Describe how to deal with options that follow non-option ARGV-elements.
  117.  
  118.    If the caller did not specify anything,
  119.    the default is REQUIRE_ORDER if the environment variable
  120.    POSIXLY_CORRECT is defined, PERMUTE otherwise.
  121.  
  122.    REQUIRE_ORDER means don't recognize them as options;
  123.    stop option processing when the first non-option is seen.
  124.    This is what Unix does.
  125.    This mode of operation is selected by either setting the environment
  126.    variable POSIXLY_CORRECT, or using `+' as the first character
  127.    of the list of option characters.
  128.  
  129.    PERMUTE is the default.  We permute the contents of ARGV as we scan,
  130.    so that eventually all the non-options are at the end.  This allows options
  131.    to be given in any order, even with programs that were not written to
  132.    expect this.
  133.  
  134.    RETURN_IN_ORDER is an option available to programs that were written
  135.    to expect options and other ARGV-elements in any order and that care about
  136.    the ordering of the two.  We describe each non-option ARGV-element
  137.    as if it were the argument of an option with character code 1.
  138.    Using `-' as the first character of the list of option characters
  139.    selects this mode of operation.
  140.  
  141.    The special argument `--' forces an end of option-scanning regardless
  142.    of the value of `ordering'.  In the case of RETURN_IN_ORDER, only
  143.    `--' can cause `getopt' to return EOF with `optind' != ARGC.  */
  144.  
  145. static enum
  146. {
  147.   REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
  148. } ordering;
  149.  
  150. #ifdef    __GNU_LIBRARY__
  151. #include <string.h>
  152. #define    my_index    strchr
  153. #define    my_bcopy(src, dst, n)    memcpy ((dst), (src), (n))
  154. #else
  155.  
  156. /* Avoid depending on library functions or files
  157.    whose names are inconsistent.  */
  158.  
  159. char *getenv ();
  160.  
  161. static char *
  162. my_index (string, chr)
  163.      char *string;
  164.      int chr;
  165. {
  166.   while (*string)
  167.     {
  168.       if (*string == chr)
  169.     return string;
  170.       string++;
  171.     }
  172.   return 0;
  173. }
  174.  
  175. static void
  176. my_bcopy (from, to, size)
  177.      char *from, *to;
  178.      int size;
  179. {
  180.   int i;
  181.   for (i = 0; i < size; i++)
  182.     to[i] = from[i];
  183. }
  184. #endif                /* GNU C library.  */
  185.  
  186. /* Handle permutation of arguments.  */
  187.  
  188. /* Describe the part of ARGV that contains non-options that have
  189.    been skipped.  `first_nonopt' is the index in ARGV of the first of them;
  190.    `last_nonopt' is the index after the last of them.  */
  191.  
  192. static int first_nonopt;
  193. static int last_nonopt;
  194.  
  195. /* Exchange two adjacent subsequences of ARGV.
  196.    One subsequence is elements [first_nonopt,last_nonopt)
  197.    which contains all the non-options that have been skipped so far.
  198.    The other is elements [last_nonopt,optind), which contains all
  199.    the options processed since those non-options were skipped.
  200.  
  201.    `first_nonopt' and `last_nonopt' are relocated so that they describe
  202.    the new indices of the non-options in ARGV after they are moved.  */
  203.  
  204. static void
  205. exchange (argv)
  206.      char **argv;
  207. {
  208.   int nonopts_size = (last_nonopt - first_nonopt) * sizeof (char *);
  209.   char **temp = (char **) __alloca (nonopts_size);
  210.  
  211.   /* Interchange the two blocks of data in ARGV.  */
  212.  
  213.   my_bcopy (&argv[first_nonopt], temp, nonopts_size);
  214.   my_bcopy (&argv[last_nonopt], &argv[first_nonopt],
  215.         (optind - last_nonopt) * sizeof (char *));
  216.   my_bcopy (temp, &argv[first_nonopt + optind - last_nonopt], nonopts_size);
  217.  
  218.   /* Update records for the slots the non-options now occupy.  */
  219.  
  220.   first_nonopt += (optind - last_nonopt);
  221.   last_nonopt = optind;
  222. }
  223.  
  224. /* Scan elements of ARGV (whose length is ARGC) for option characters
  225.    given in OPTSTRING.
  226.  
  227.    If an element of ARGV starts with '-', and is not exactly "-" or "--",
  228.    then it is an option element.  The characters of this element
  229.    (aside from the initial '-') are option characters.  If `getopt'
  230.    is called repeatedly, it returns successively each of the option characters
  231.    from each of the option elements.
  232.  
  233.    If `getopt' finds another option character, it returns that character,
  234.    updating `optind' and `nextchar' so that the next call to `getopt' can
  235.    resume the scan with the following option character or ARGV-element.
  236.  
  237.    If there are no more option characters, `getopt' returns `EOF'.
  238.    Then `optind' is the index in ARGV of the first ARGV-element
  239.    that is not an option.  (The ARGV-elements have been permuted
  240.    so that those that are not options now come last.)
  241.  
  242.    OPTSTRING is a string containing the legitimate option characters.
  243.    If an option character is seen that is not listed in OPTSTRING,
  244.    return '?' after pri